沒有 Switch 了


react-router-dom V6 沒有 Switch 了

import Switch 要改成 Routes

<Route path='/signin' element={<Signin />} ></Route>

previous:

<Switch>
    <Route path="/signin" exact>
      <Signin />
    </Route>
</Switch>







你可能感興趣的文章

Command Line Interface (CLI) 超入門

Command Line Interface (CLI) 超入門

Python 命名與Underscore

Python 命名與Underscore

Airflow 動手玩系列文介紹

Airflow 動手玩系列文介紹






留言討論